Include library/stdarch for CURRENT_RUSTC_VERSION updates#152188
Include library/stdarch for CURRENT_RUSTC_VERSION updates#152188rust-bors[bot] merged 3 commits intorust-lang:mainfrom
library/stdarch for CURRENT_RUSTC_VERSION updates#152188Conversation
(cherry picked from commit b901497)
|
cc @Amanieu, @folkertdev, @sayantn |
|
r? @jhpratt rustbot has assigned @jhpratt. Use Why was this reviewer chosen?The reviewer was selected based on:
|
|
The tool is the most relevant part to review. r? release |
|
r? emilyalbini |
This comment has been minimized.
This comment has been minimized.
|
I only found one time that clippy has used this in commit 5f26d0e, which still lingers today -- that ought to be 1.88.0 I guess. I'm not sure if that version is surfaced to the user anywhere though, so I don't know if the build-time replacement is working in that context either. I didn't find any history of |
|
Some changes occurred in src/tools/clippy cc @rust-lang/clippy |
|
I just fixed that single clippy instance, but I don't think we should add that path to |
|
@bors r+ rollup |
Rollup of 9 pull requests Successful merges: - #150424 (diagnostics: add note when param-env shadows global impl) - #152132 (implement `carryless_mul`) - #152508 (Improve write! and writeln! error when called without destination) - #152534 (Test(lib/win/net): Skip UDS tests when under Win7) - #152578 (ci: Lock cross toolchain version and update docs) - #152188 (Include `library/stdarch` for `CURRENT_RUSTC_VERSION` updates) - #152402 (Add regression test for #141738) - #152472 (unwind/wasm: fix compile error by wrapping wasm_throw in unsafe block) - #152610 (Exchange js_lint message between bless and non-bless)
Rollup merge of #152188 - cuviper:placeholder-stdarch, r=Mark-Simulacrum Include `library/stdarch` for `CURRENT_RUSTC_VERSION` updates Our tool `replace-version-placeholder` uses the `tidy` file walker and its directory filter, but that skips `library/stdarch` which we do need for public stability markers. This PR adds a local filter function that explicitly allows that path. The commit for 1.94 `stdarch` updates is coming from beta #152187.
Our tool
replace-version-placeholderuses thetidyfile walker and itsdirectory filter, but that skips
library/stdarchwhich we do need for publicstability markers. This PR adds a local filter function that explicitly allows
that path.
The commit for 1.94
stdarchupdates is coming from beta #152187.